home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Grand Slam
/
GrandSlam volume 1.iso
/
xtrac004
/
ixrtl
/
restore.bat
< prev
next >
Wrap
DOS Batch File
|
1994-09-15
|
587b
|
27 lines
@echo off
cls
echo:
echo:
echo:
if "%1"=="" goto nogood
echo: This program will restore your game under the name of %1
echo: from SAFE.INX
echo: Once inside the game, press ENTER,
echo: Type the command LOAD
echo: Type %1 and press ENTER.
echo:
echo: Press ENTER to copy from SAFE.INX to %1.INX , or...
echo: ...press CTRL-C or CTRL-BREAK to interrupt this program.
pause
copy safe.inx %1.inx
echo: It is done. You may run the program now.
goto end
:nogood
echo:
echo:
Echo: Usage: RESTORE name (you wish to create from SAFE.INX)
echo:
echo:
echo:
:end